I'm working on a small web microservice that takes an HTTP POST of a the binary high score sectors. Could we perhaps patch Jumpman to send the high score data that is in memory at the High Score screen?
But to test feasibility, let's see if we can send the blob of high score data across the network to another host, e.g. running nc (netcat):
Sending data via FujiNet is very simple:
Load netcat with e.g. nc -vl 6502 on a PC. (e.g. PC is 192.168.1.6)
Open a connection, e.g. to N:TCP://192.168.1.6:6502/ https://github.com/FujiNetWIFI/fujinet-platformio/wiki/N%3A-SIO-Command-%27O%27---Open
Write the high score data in memory https://github.com/FujiNetWIFI/fujinet-platformio/wiki/N%3A-SIO-Command-%27W%27---Write
Close the connection: https://github.com/FujiNetWIFI/fujinet-platformio/wiki/N%3A-SIO-Command-%27C%27---Close

Thoughts? -Thom